From 342df1e2476a934a46059fb947ddc2d9361f7b5e Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 12 Apr 1993 07:54:16 +0000 Subject: [PATCH] (rot13-display-table): Use `vector', not `make-rope'. --- lisp/rot13.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/rot13.el b/lisp/rot13.el index 7c068bc1d81..d19a29db7dc 100644 --- a/lisp/rot13.el +++ b/lisp/rot13.el @@ -38,8 +38,8 @@ (let ((table (make-display-table)) (i 0)) (while (< i 26) - (aset table (+ i ?a) (make-rope (+ (% (+ i 13) 26) ?a))) - (aset table (+ i ?A) (make-rope (+ (% (+ i 13) 26) ?A))) + (aset table (+ i ?a) (vector (+ (% (+ i 13) 26) ?a))) + (aset table (+ i ?A) (vector (+ (% (+ i 13) 26) ?A))) (setq i (1+ i))) table) "Char table for rot 13 display.") -- 2.30.2